Twitter Media Downloader
https://greasyfork.org/ja/scripts/423001-twitter-media-downloader
→Twitter Click'n'Saveに乗り換えた
2025-04-28
三日前ぐらいからかな、動かなくなった
ので使うTwitter Click'n'Saveかgallery-dlとかかな
以下古い情報
俺の環境ではまだ動く
スクリプトに// @match https://x.com/*を加えればxに変わってもまだ動く
さらにバグ修正 2025-03-11
code:fix.js
//let tweet_entrie = tweet_detail.data.threaded_conversation_with_injections_v2.instructions0.entries.find(n => n.entryId == tweet-${status_id}); この行を以下2行に変更
const objectsWithEntries = tweet_detail.data.threaded_conversation_with_injections_v2.instructions.find(obj => obj.hasOwnProperty('entries'));
let tweet_entrie = objectsWithEntries.entries.find(n => n.entryId == tweet-${status_id});
constになってるけど動くからたぶん大丈夫
#ユーザースクリプト